Welcome![Sign In][Sign Up]
Location:
Search - LT code

Search list

[OpenCVOpenCV-code

Description: 《学习opencv中文版》这本书的课后源码。-Code of book《learning opencv<Chinese Vision>》
Platform: | Size: 14937088 | Author: luer | Hits:

[Windows Developseveral-code--CPP-

Description: 几个自己用C语言写的代码:十进制转成二~十六进制.cpp<将一个十进制数转换成二至十六进制的任意数>;十六进制转成十进制.cpp(将一个十六进制的数转换成十进制数) ;数字转成字符串-递归法.cpp(用递归法将一串数字转换成字符串);因子之和.cpp(找出所有因子之和等于它本身的数)-several code coded by myself use C++ language.
Platform: | Size: 2048 | Author: luer | Hits:

[Program docdigital-LTRaport

Description: 本文介绍了数字喷泉码的编译码原理,LT码和Raport码的,最后的LT码的仿真。非常有用的,适合初学者了解学习!-This paper describes Decoding Principles of digital fountain codes, LT codes and Raport yards, and finally the LT code simulation. Very useful for beginners to understand learning
Platform: | Size: 789504 | Author: 曹海波 | Hits:

[Anti-viruscode

Description: #include <QMap> #include <QMapIterator> #include <QDebug> int main() { QMap<QString, int> map map["one"] = 1 // insert using the [] operator map["two"] = 2 map.insert("seven", 7) // insert using insert() qDebug() << map["seven"] // read using the [] operator qDebug() << map.value("seven") // read using value() QMapIterator<QString, int> i(map) while (i.hasNext()) { i.next() qDebug() << i.key() << ":" << i.value() } return 0 }-#include <QMap> #include <QMapIterator> #include <QDebug> int main() { QMap<QString, int> map map["one"] = 1 // insert using the [] operator map["two"] = 2 map.insert("seven", 7) // insert using insert() qDebug() << map["seven"] // read using the [] operator qDebug() << map.value("seven") // read using value() QMapIterator<QString, int> i(map) while (i.hasNext()) { i.next() qDebug() << i.key() << ":" << i.value() } return 0 }
Platform: | Size: 7168 | Author: randex | Hits:

[WEB Codecode

Description: 大道PHP:大道PHP LAMP+Zend+开源框架整合开发与实战书籍对应的源代码-the sourcecode of the book <<da dao PHP>>
Platform: | Size: 18479104 | Author: feiyun | Hits:

[VC/MFClt

Description: 东南大学c语言课程配套代码 C++案例教程源代码--例题参考程序-Southeast university C++ case of the c language courses supporting code tutorial source code- the experiment reference program
Platform: | Size: 154624 | Author: 张丽丽 | Hits:

[androidsource-code-for-Android-Application

Description: <android应用开发揭秘>示例的源代码-source code for <Android Application Development>
Platform: | Size: 13283328 | Author: 杨枭 | Hits:

[Streaming Mpeg4ltcodesimulator.tar

Description: LT码的源代码。LT码是目前非常流行的一种应用程FEC码,能够产生无穷的编码符号。对于流媒体和网络传输,非常有用-LT code' s source code. LT codes is a very popular application FEC codes can produce a lot of coding symbols. Very useful for streaming media, and network transmission
Platform: | Size: 10240 | Author: 张军 | Hits:

[DSP programLT-DSP2812-test-code1

Description: 力天2812实验教程代码,对学习2812很有用,能够快熟掌握2812的程序编写-litian 2812 The experiment course code, To learn 2812 is very useful and can be ripe master 2812 programming
Platform: | Size: 6623232 | Author: caoqi | Hits:

[GDI-BitmapLT

Description: 关于任意直线的对称变换可运行源代码,比较简单-The source code can be run on any straight line of symmetry transformation relatively simple
Platform: | Size: 1024 | Author: 良田 | Hits:

[Embeded LinuxLT-ARM210X_V2.0

Description: lpc21XX测试代码,针对立天电子开发板-lpc2103 source code
Platform: | Size: 122880 | Author: cimu | Hits:

[SCMLT-1BPPrograms

Description: LT_1B MSP430单片机源代码 很好的学习资料 新手必备-LT_1B MSP430 microcontroller source code good learning materials novice
Platform: | Size: 2074624 | Author: 潘小杰 | Hits:

[Software Engineeringcode-led

Description: code seven leg module bcd_tang (clock, rst, s1, led) input clock, s1, rst output [6:0] led reg [6:0] led reg [3:0] bcd wire [3:0] bcd_next always @(posedge clock or posedge rst) begin if (rst == 1 b1) begin bcd <= 4 b0 end else if (s1 == 1 b1) begin bcd <= bcd_next // update new value end else begin bcd <= bcd // keep old value end end assign bcd_next = (bcd == 4 b1001) ? 4 b0 : bcd + 1 b1 // bcd : current stage // bcd_next : next stage always @(posedge clock) begin case(bcd) 4 b0000: led <= 7 b1111110 4 b0001: led <= 7 b0110000 4 b0010: led <= 7 b1101101 4 b0011: led <= 7 b1111001 4 b0100: led <= 7 b0110011 4 b0101: led <= 7 b1011011 4 b0110: led <= 7 b1011111 4 b0111: led <= 7 b1110000 4 b1000: led <= 7 b1111111 4 b1001: led <= 7 b1110011 default: led <= 7 b1111111 endcase end endmodule-code seven leg module bcd_tang (clock, rst, s1, led) input clock, s1, rst output [6:0] led reg [6:0] led reg [3:0] bcd wire [3:0] bcd_next always @(posedge clock or posedge rst) begin if (rst == 1 b1) begin bcd <= 4 b0 end else if (s1 == 1 b1) begin bcd <= bcd_next // update new value end else begin bcd <= bcd // keep old value end end assign bcd_next = (bcd == 4 b1001) ? 4 b0 : bcd + 1 b1 // bcd : current stage // bcd_next : next stage always @(posedge clock) begin case(bcd) 4 b0000: led <= 7 b1111110 4 b0001: led <= 7 b0110000 4 b0010: led <= 7 b1101101 4 b0011: led <= 7 b1111001 4 b0100: led <= 7 b0110011 4 b0101: led <= 7 b1011011 4 b0110: led <= 7 b1011111 4 b0111: led <= 7 b1110000 4 b1000: led <= 7 b1111111 4 b1001: led <= 7 b1110011 default: led <= 7 b1111111 endcase end endmodule
Platform: | Size: 194560 | Author: he | Hits:

[CommunicationRaptorDecode_BPSK_AWGN

Description: Raptor码的译码程序,包括LDPC码部分和LT码部分的BP迭代译码。-Raptor code decoding process, including BP iterative decoding of the LDPC code portion and LT code portion.
Platform: | Size: 1448960 | Author: 屠龙 | Hits:

[ELanguageLT-Code-MATLAB-Simulation-in-BEC-

Description: 本源码仿真了删除信道下的编译码性能,结合自己的开发经验及学习体会,具有很高的参考价值-This source simulation the delete channel encoding and decoding performance, combined with its own development experience and learning experience, and has a high reference value
Platform: | Size: 55296 | Author: ldl | Hits:

[CSharpCSharppuzzle-code

Description: C#游戏程序附源码。<br>游戏说明:<br>可以自己添加图片,随机生成图片块。每次生成的顺序不同。<br>添加图片后。游戏就开始记时(以秒为单位)。开始记移动的步数。<br>添加图片在黑线框里单击鼠标左键.-C# game program with source code. <br> Game Description: <br> Can add their own images, randomly generated picture blocks. Each generated by a different order. <br> Add a picture after. Game began chronograph (seconds units). Move starts counting the number of steps. <br> Add a picture of the black line box, click the left mouse button.
Platform: | Size: 532480 | Author: mc | Hits:

[CSharpLT.VS2012AddIns-source

Description: 自动代码生成工具,可以自动生成C#4层代码。-Automatic code generation tool
Platform: | Size: 1355776 | Author: Joshua | Hits:

[OtherLT-1B-Programs(Rev.-E)

Description: 一些关于430单片机的应用程序代码,很有用-About 430 single-chip microcomputer application code, very useful
Platform: | Size: 3655680 | Author: 和徳芳 | Hits:

[JSP/Javajava-Generic-tools

Description: 包含获得各种集合对象的常用方法的泛型工具类。如果要获得一个 {@code Map<String, String>} 的对象,可以通过下面的方式实现: * {@literal Map<String, String> map = GenericUtils.getMap() }。但是不能直接作为参数使用,例如有这样一个方法: * {@literal setInfo(Map<String, String>)},不能直接这样调用:<s> * <code>setInfo(GenericUtils.getMap())</code></s>-Generic tools commonly used method to get various collection object. If you want to get a {@ code Map <String, String> } Object, by way of the following:* {@ literal Map <String, String> map = GenericUtils.getMap () }. But can not be directly used as a parameter, such as a:* {@ literal setInfo (Map <String, String> )}, Can not be directly called like this: <s>* <code>setInfo(GenericUtils.getMap())</code></s>
Platform: | Size: 2048 | Author: final | Hits:

[matlabLT_simBIAWGN

Description: LT编码过程的实现方法,采用基本的喷泉码编译方法实现-LT CODE
Platform: | Size: 1024 | Author: 刘小平 | Hits:
« 1 2 3 4 5 6 78 9 10 11 12 ... 50 »

CodeBus www.codebus.net